JavaScript

{dialog.object}hideWaitMessage Method

Syntax

{dialog.Object}.hideWaitMessage(UXWaitMessageTarget)

Arguments

UXWaitMessageTarget

The type of wait message to show. This can be set to:

Wait Message Target
Description
page

the entire screen is locked and the message is centered on the screen

container:containerId

the contents of a container specified by containerId

panel:panelId

the contents of a Panel specified by panelId

element:elementId

the contents of an element (typically a div) specified by elementId

max

The maximum value

Description

If no argument is passed in, all open wait messages are hidden. If you pass in an argument, the specified wait message is hidden.

Example

//hide wait message over 'CONAINER_1'
{dialog.object}.hideWaitMessage('container:CONTAINER_1');

See Also